home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00139_Script_rewind button < prev    next >
Text File  |  1999-03-01  |  552b  |  34 lines

  1.  
  2. on mouseWithin me
  3.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  4.   
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor -1
  9. end
  10.  
  11. on mouseDown me
  12.   repeat with x = 1 to 6
  13.     if soundBusy(x) then 
  14.       set the volume of sound x to 255
  15.       sound stop x
  16.     end if
  17.   end repeat
  18.   puppetSprite 95, FALSE -- the rewind button coming from scene2
  19.   set the loc of sprite(95) = point(1000, 1000)
  20.   updateStage
  21.   cursor 200
  22.   
  23.   
  24. end
  25.  
  26. on mouseUp me
  27.   cursor -1
  28.   go to frame "scene1"
  29.   updateStage
  30.   
  31.   
  32. end 
  33.  
  34.